home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / tcp_ip / tnos / tnos100s / mailfor.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-27  |  710 b   |  30 lines

  1. /* Include needed for extended bbs support - WG7J */
  2. #ifndef _MAILFOR_H
  3. #define _MAILFOR_H
  4.  
  5. #ifndef _AX25_H
  6. #include "ax25.h"
  7. #endif
  8.  
  9. /*List of bbses we forward to, to check the R: lines for */
  10. #define FWDBBSLEN 9 /* call + optional ssid, eg. "KB7BHF-15" */
  11. #define NUMFWDBBS 32 /* Check for 32 bbs's max (arbitrary !) */
  12.  
  13. /* In mailfor.c */
  14. extern char MyFwds[][FWDBBSLEN+1];
  15. extern int Numfwds;
  16. extern int Checklock;
  17. extern int Rreturn;
  18. extern int Rfwdcheck;
  19. extern int Rdate;
  20.  
  21. /* List of area names to exclude from mail-for beacon */
  22. struct no_mf {
  23.     struct no_mf *next;
  24.     char area[9];
  25. };
  26. #define NULLMF (struct no_mf *)0
  27. extern struct no_mf *No_mf;
  28.  
  29. #endif /*_MAILFOR_H*/
  30.